home *** CD-ROM | disk | FTP | other *** search
-
- /* This file added by snb94r@ecs.soton.ac.uk to bypass the cfront 3.1 bug
- * which stops the va_arg macro being used. It relies on sizeof(int)
- * being equal to sizeof(enum TchkType).
- */
-
- #include <stdarg.h>
- #include "GfxTable.h"
-
- void enter_Gfx_ops(int *t, int count, va_list ap)
- {
- int i;
- for (i = 0; i<count; ++i) {
- *t++ = va_arg(ap, int);
- }
- }
-